This small patch adds back a closing paranthesis that has gone lost. It
authorEwan Mellor <ewan@xensource.com>
Wed, 23 Aug 2006 22:12:56 +0000 (23:12 +0100)
committerEwan Mellor <ewan@xensource.com>
Wed, 23 Aug 2006 22:12:56 +0000 (23:12 +0100)
fixes the build for the Xen access control module.

Signed-off by: Reiner Sailer <sailer@us.ibm.com>

xen/acm/acm_simple_type_enforcement_hooks.c

index dd732e7793b76637c21587174236f5f0c90636ed..0f8c8c3818cc592862b5ff5ac0d312ef6beb5366 100644 (file)
@@ -353,7 +353,7 @@ ste_dump_stats(u8 *buf, u16 buf_len)
     stats.ec_cachehit_count = htonl(atomic_read(&ste_bin_pol.ec_cachehit_count));
     stats.gt_cachehit_count = htonl(atomic_read(&ste_bin_pol.gt_cachehit_count));
 
-    if (buf_len < sizeof(struct acm_ste_stats_buffer)
+    if (buf_len < sizeof(struct acm_ste_stats_buffer))
         return -ENOMEM;
 
     memcpy(buf, &stats, sizeof(struct acm_ste_stats_buffer));